home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1998 May
/
PCPlus May 1998=disk A.iso
/
full
/
CBUILDER
/
SAMS
/
SAMPLES
/
CHAP02
/
FORLOOP.CPP
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-02-12
|
351 b
|
20 lines
#include <iostream.h>
#include <conio.h>
#pragma hdrstop
int main(int argv, char** argc)
{
cout << endl << "Starting program..." << endl << endl;
int i;
for (i=0;i<10;i++) {
cout << "Iteration " << i << endl;
}
cout << endl;
for (i=10;i>0;i--) {
cout << "Iteration " << i << endl;
}
getch();
return 0;
}